![]() |
||||
| ||||
![]() |
||||
|
||||
![]() |
![]() Saturday, March 13, 2004
via CNN.com
posted by Gary Williams at 3:44 PM | link | via The New York Times (registration required) posted by Gary Williams at 2:22 PM | link | Changing Text Colors And The Glow EffectIt took a lot of fiddle to find the code for dynamically changing the color of text interactively, and changing the color and strength of the glow effect as well. But today, after looking through a bunch of university instruction pages, I found some that weren't written in Japanese so I could understand the code. So here's demo:
The first thing was to create a class for the glowing headline, so I modified my standard 24 point headline class to add the glow filter. One thing IS important -- it doesn't work if you don't set the size of the class -- the height and width. The glow doesn't appear unless those parameters are included. <style type="text/css"> H2.myhead24glow { position: relative; top: 5px; left: 5px; font: italic 24pt times, serif; color: #FFCC00; filter:glow(color=#ffff00, strength=10, enabled=1); width:600px; height:40pt; } </style> The next thing is the JavaScript code to enable the color and filter changes. I've included the script as a file, since it can appear as an immediate part of the post and doesn't have to be added to the page template. So the code that follows first shows the include code, and then the code within the .js file: <script type="text/javascript" src="http://home.corninglink.com/gwms/changeGlowColor.js"></script>
Notice that the references to the filter attributes use embedded arrays in the document defintitions, attached to the object ID: headline.filters["glow"].color and headline.filters["glow"].strength and headline.filters["glow"].enabled . The style attribute of the object are used to set the color: headline.style.color .
In the HTML below, notice the class and id clauses in the headline definition -- they are required for use in the JavaScript code. You should probably also note the style clauses in the button definitions, which set the button colors to match the effects they activate. The onClick clauses call the JavaScript functions to produce the desired effects: <h2 id=headline class=myhead24glow>Word</h2> <input type=button style="background-color:#FFCC00;" value="Glow Orange" onClick="changeGlowColor('#FFcc00');"> <input type=button style="background-color:#FF0000;" value="Glow Red" onClick="changeGlowColor('#FF0000');"> <input type=button style="background-color:#00FF00;" value="Glow Green" onClick="changeGlowColor('#00FF00');"> <input type=button style="background-color:#0000FF;" value="Glow Blue" onClick="changeGlowColor('#0000FF');"> <input type=button style="background-color:#FFff00;" value="Glow Yellow" onClick="changeGlowColor('#FFff00');"> <input type=button style="background-color:#ff00FF;" value="Glow Maroon" onClick="changeGlowColor('#FF00ff');"> <input type=button style="background-color:#00ffFF;" value="Glow Turquoise" onClick="changeGlowColor('#00FFFF');"> <input type=button style="background-color:#efefef;" value="Glow Grey" onClick="changeGlowColor('#efefef');"> <b>Strength: 40 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('40');" VALUE="40"> 20 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('20');" VALUE="20"> 10 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('10');" VALUE="10" CHECKED> 5 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('5');" VALUE="5"> 1 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('1');" VALUE="1"></b> <input type=button style="filter:glow(color=#ffcc00,strength=10);" value="Glow On" onClick="headline.filters.glow.enabled=1;"> <input type=button value="Glow Off" onClick="headline.filters.glow.enabled=0;"> <input type=button style="background-color:#FFCC00;" value="Word Orange" onClick="wordColor('#ffcc00');"> <input type=button style="background-color:#FF0000;" value="Word Red" onClick="wordColor('#ff0000');"> <input type=button style="background-color:#00FF00;" value="Word Green" onClick="wordColor('#00ff00');"> <input type=button style="background-color:#0000FF;" value="Word Blue" onClick="wordColor('#0000ff');"> <input type=button style="background-color:#FFFF00;" value="Word Yellow" onClick="wordColor('#ffFF00');"> <input type=button style="background-color:#FF00FF;" value="Word Maroon" onClick="wordColor('#ff00ff');"> <input type=button style="background-color:#00ffff;" value="Word Turquoise" onClick="wordColor('#00ffff');"> <input type=button style="background-color:#000000color:#ffffff;" value="Word Black" onClick="wordColor('#000000');"> Friday, March 12, 2004 Quote of the day (from Slashdot)Got Mole problems? |
FFFFFF 000000 | CCCCFF 330000 | 9999FF 660000 | 6666FF 990000 | 3333FF CC0000 | 0000FF FF0000 |
FFFFFF 000000 | CCCCFF 003300 | 9999FF 006600 | 6666FF 009900 | 3333FF 00CC00 | 0000FF 00FF00 |
FFFFFF 000000 | CCCCFF 000033 | 9999FF 000066 | 6666FF 000099 | 3333FF 0000CC | 0000FF 0000FF |
FF0000 00FF00 | FF3333 00CC00 | FF6666 009900 | FF9999 006600 | FFCCCC 003300 | FFFFFF 000000 |
FF0000 FF0000 | FF3333 CC0000 | FF6666 990000 | FF9999 660000 | FFCCCC 330000 | FFFFFF 000000 |
FF0000 0000FF | FF3333 0000CC | FF6666 000099 | FF9999 000066 | FFCCCC 000033 | FFFFFF 000000 |
FFFFFF 000000 | CCFFCC 000033 | 99FF99 000066 | 66FF66 000099 | 33FF33 0000CC | 00FF00 0000FF |
FFFFFF 000000 | CCFFCC 003300 | 99FF99 006600 | 66FF66 009900 | 33FF33 0000CC | 00FF00 00FF00 |
FFFFFF 000000 | CCFFCC 330000 | 99FF99 660000 | 66FF66 990000 | 33FF33 0000CC | 00FF00 FF0000 |
posted by Gary Williams at 1:50 AM | link |
- Turns out what you have to do is right-click the StartMenu button, select Properties.
- In the properties Start Menu tab, select Classic Start menu — that activates the Customize button — push that.
- That brings up the Customize Classic Start Menu box — click Advanced.
- That brings up the Start Menu/Programs folder — click the + sign to open the directory tree below programs and several directories appear — click on the Startup folder.
On my system, that folder was empty (even though a group of things appeared in the task bar incon area during startup like the Quicktime icon, the PC-cillin antivirus icon and so on — maybe they're in a system startup directory somewhere I haven't bothered to find).
- Copy shortcuts into the Startup folder and close it. When you boot the programs will start.
- Click the OK button on the Customize Classic Start Menu box
- Click the Start Menu button (unless you want to stay in the Classic Start Menu style) and click OK to close the box — and you're done, when you boot the new programs will start up after you log in, automatically.
Once produced, the Higgs boson decays very quickly.'God particle' may have been seen
By Paul Rincon
BBC News Online science staff
A scientist says one of the most sought after particles in physics - the Higgs boson - may have been found, but the evidence is still relatively weak.
Peter Renton, of the University of Oxford, says the particle may have been detected by researchers at an atom-smashing facility in Switzerland.
The Higgs boson explains why all other particles have mass and is fundamental to a complete understanding of matter.
Dr Renton's assessment of the Higgs hunt is published in Nature magazine.
"There's certainly evidence for something, whether it's the Higgs boson is questionable," Dr Renton, a particle physicist at Oxford, told BBC News Online.[more]
NASAThe image required 800 exposures taken over the course of 400 Hubble orbits around Earth.Images Reveal Deepest Glance Into Universe
By DENNIS OVERBYE
Published: March 10, 2004
BALTIMORE, March 9 — Astronomers using the Hubble Space Telescope said Tuesday that they had reached far enough out in space and back in time to be within "a stone's throw" of the Big Bang itself.
In a ceremony that was part science workshop, part political rally and part starting gun for an astronomical gold rush, astronomers at the Space Telescope Science Institute on the Johns Hopkins University campus unveiled what they said was the deepest telescopic view into the universe ever obtained.
Along with detecting roughly 10,000 galaxies, the million-second exposure of a small patch of dark sky in the constellation Fornax captured objects a quarter as bright as previous surveys.
Several dozen faint reddish spots, the astronomers said, could even be infant galaxies just emerging from the "dark ages" that prevailed in the first half billion years after the Big Bang when stars were just beginning to form.
"We might have seen the end of the beginning," said Dr. Anton Koekemoer of the institute, who was part of the project.
He and others cautioned, however, that more work would be required before astronomers know if their surmises are correct. Astronomers will not be able to take a deeper picture until the James Webb Space Telescope goes into orbit in 2011.[more]
Autopsychographyposted by Gary Williams at 2:21 AM | link |
The poet is a faker
Who's so good at his act
He even fakes the pain
Of pain he feels in fact.
And those who read his words
Will feel in what he wrote
Neither of the pains he has
But just the one they don't.
And so around its track
This thing called the heart winds,
A little clockwork train
To entertain our minds.
- Fernando Pessoa
13+ different ways of looking at one of Pessoa's poems
posted by Gary Williams at 3:34 PM | link |Baby Diot Coke — in 1379
Naming your child after a popular soft drink could be seen as a little bit faddish but the parents of young Diot Coke might be forgiven – they gave their baby daughter the name way back in 1379.
Researchers at the National Archives believe that the little girl, born in the West Riding of Yorkshire, was the unfortunate victim of the corruption of the name Dionisia. One of the diminutives derived from that name on its path to the modern day Denise was Diot.
The girl's surname is believed to be a variation on the name Cook.
George Redmonds, the author of the organisation?s Ancestors magazine, discovered in his scrutiny of the birth archives that names now considered to be masculine, such as Philip and Thomas, were once used for girls in the 14th century.
Redmond also found that names such as Godelena, Helwise, Idony, Avice and Dionisia were more popular than some of the names now considered traditional, such as Mary.
![]() |
| ![]() |
The Bubble you have chosen indicates you may be seeking strength, both emotionally as well as physically. This bubble represents the body... the earth, and a strong will toward the physical. It is associated with the astrological sign Aries, or it's Chinese counterpart, the Dragon.
~*~
Perhaps you're needing strength to overcome an obstacle. Wearing small bits of red in your wardrobe will help to promote this strength. But... be careful not to wear too much red, as it can make you appear to be too overbearing or domineering.~*~
This bubble represents Physical Power and vitality, and at it's worse, a possible attempt to force a matter at hand. A combination of blue and white worn on your left side, can help you to get your point across in a less forceful way, allowing others to be more receptive to your ideas.~*~
Individuals who carry this shade in their aura have strong wills and can be forceful in their attempts to gain the respect of others. These individuals tend to have high tempers, which is reflected in their nervous system. Most jittery or shaky individuals have a great deal of red in their auras, and could use some white to offset this nervous condition.~*~
Wearing articles of this bright red color, can help balance hormones and menstrual cycles, as well as promote fertility.
posted by Gary Williams at 1:04 PM | link |Planet Panorama: See Five Worlds at Once
By Joe Rao
SPACE.com's Night Sky Columnist
All five planets that can be visible to the naked eye will appear together in the evening sky later this month in a viewing opportunity that won't be matched for 32 years.
Going in order from West to East, the cast of planetary characters will be Mercury, Venus, Mars, Saturn and Jupiter. All but Mercury are already visible. The winged messenger is the most elusive of the five, being so close to the Sun that it never gets very far above the horizon, and always only near dawn or dusk.
By late March, Mercury will be about as high as possible at dusk for viewers at mid-northern latitudes, setting the stage for a memorable few weeks of easy-to-do backyard skywatching.Where to look
Mercury will hover above the setting Sun in the West. Higher up, brilliant Venus already dominates the stage, outshining all stars and planets. Mars, much dimmer than it was last summer, is high in the southwestern sky. Saturn is nearly overhead now at dusk and to the south. Jupiter, now stunningly bright, is king of the eastern evening sky, rising just as the Sun goes down.[more]
posted by Gary Williams at 1:10 AM | link |Morning verses
The return of the birds--
as indicated by two cats
frequently seen staring intently out windows
tails twitching in unison.
![]() |